home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / hf^k-3.dms / in.adf / C-Incl.Lha / new.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-13  |  374 b   |  29 lines

  1. #ifndef _INCLUDE_NEW_H
  2. #define _INCLUDE_NEW_H
  3.  
  4. /*
  5. **  $VER: new.h 1.0 (18.1.96)
  6. **  StormC Release 1.1
  7. **
  8. **  '(C) Copyright 1995 Haage & Partner Computer GmbH'
  9. **     All Rights Reserved
  10. */
  11.  
  12. #ifndef NULL
  13. #define NULL 0
  14. #endif
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20. typedef unsigned size_t;
  21.  
  22. void (*set_new_handler(void(*)(void)))(void);
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27.  
  28. #endif
  29.